home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / ViePratique / gnucash / gnucash-2.6.5-setup.exe / {app} / bin / gnc-fq-dump < prev    next >
Text File  |  2014-12-19  |  6KB  |  206 lines

  1. #!/usr/bin/perl
  2. #
  3. #    Copyright (C) 2003, David Hampton <hampton@employees.org>
  4. #
  5. #    This program is free software; you can redistribute it and/or modify
  6. #    it under the terms of the GNU General Public License as published by
  7. #    the Free Software Foundation; either version 2 of the License, or
  8. #    (at your option) any later version.
  9. #
  10. #    This program is distributed in the hope that it will be useful,
  11. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. #    GNU General Public License for more details.
  14. #
  15. #    You should have received a copy of the GNU General Public License
  16. #    along with this program; if not, write to the Free Software
  17. #    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  18. #    02110-1301, USA.
  19. #
  20.  
  21. use strict;
  22.  
  23. sub check_modules {
  24.   my @modules = qw(Finance::Quote LWP HTTP::Request::Common HTML::TableExtract Crypt::SSLeay);
  25.   my @missing;
  26.  
  27.   foreach my $mod (@modules) {
  28.     if (eval "require $mod") {
  29.       $mod->import();
  30.     }
  31.     else {
  32.       push (@missing, $mod);
  33.     }
  34.   }
  35.  
  36.   return unless @missing;
  37.  
  38.   print STDERR "$0 cannot find all the Perl modules needed to run.\n";
  39.   print STDERR "You need to install the following Perl modules:\n";
  40.   foreach my $mod (@missing) {
  41.     print STDERR "  ".$mod."\n";
  42.   }
  43.   print STDERR "Use your system's package manager to install them,\n";
  44.   print STDERR "or run 'gnc-fq-update' as root.\n";
  45.  
  46.   exit 1;
  47. }
  48.  
  49. sub report {
  50.   my($itemname, $qh, $verbose) = @_;
  51.   my ($symbol, $date, $currency, $last, $nav, $price, $timezone, $keyname);
  52.   my($gccanuse);
  53.  
  54.   # Sanity check returned results
  55.   if ((keys %$qh) < 1) {
  56.     printf("No results found for stock $itemname.\n");
  57.     return;
  58.   } else {
  59.     my ($stock, $attribute, %seen, $first);
  60.  
  61.     foreach $keyname (sort keys %$qh) {
  62.       ($stock, $attribute) = split('\034', $keyname);
  63.       last if $stock eq $itemname;
  64.       $first = $stock if !defined $first;
  65.       $seen{$stock} = 1;
  66.     }
  67.  
  68.     if ($stock ne $itemname) {
  69.       printf "\nNo results found for stock $itemname, but results were returned for\n";
  70.       printf "the stock(s) %s.  ", join(", ",  keys(%seen));
  71.       printf "Printing data for the first stock returned.\n\n";
  72.  
  73.       # Print stats for the first stock returned.
  74.       $itemname = $first;
  75.     }
  76.   }
  77.  
  78.   # Parse the quote fields and put warnings where necessary.
  79.   $gccanuse = 1;
  80.   if (defined($$qh{$itemname, "symbol"})) {
  81.     $symbol = $$qh{$itemname, "symbol"};
  82.   } else {
  83.     $symbol = "$itemname (deduced)";
  84.     $gccanuse = 0;
  85.   }
  86.   if (defined($$qh{$itemname, "date"})) {
  87.     $date = $$qh{$itemname, "date"};
  88.   } else {
  89.     $date = "** missing **";
  90.     $gccanuse = 0;
  91.   }
  92.   if (defined($$qh{$itemname, "currency"})) {
  93.     $currency = $$qh{$itemname, "currency"};
  94.   } else {
  95.     $currency = "** missing **";
  96.     $gccanuse = 0;
  97.   }
  98.   if ((!defined($$qh{$itemname, "last"})) &&
  99.       (!defined($$qh{$itemname, "nav" })) &&
  100.       (!defined($$qh{$itemname, "price"}))) {
  101.     $$qh{$itemname, "last"} = "**missing**";
  102.     $$qh{$itemname, "nav"} = "**missing**";
  103.     $$qh{$itemname, "price"} = "**missing**";
  104.     $gccanuse = 0;
  105.   } else {
  106.     $last = defined($$qh{$itemname, "last"})
  107.       ? $$qh{$itemname, "last"} :  "";
  108.     $nav = defined($$qh{$itemname, "nav"})
  109.       ? $$qh{$itemname, "nav"} :  "";
  110.     $price = defined($$qh{$itemname, "price"})
  111.       ? $$qh{$itemname, "price"} :  "";
  112.   }
  113.   $timezone = defined($$qh{$itemname, "timezone"})
  114.     ? $$qh{$itemname, "timezone"} :  "";
  115.  
  116.   # Dump gnucash recognized fields
  117.   printf "Finance::Quote fields Gnucash uses:\n";
  118.   printf "    symbol: %-20s <=== required\n",      $symbol;
  119.   printf "      date: %-20s <=== required\n",        $date;
  120.   printf "  currency: %-20s <=== required\n",       $currency;
  121.   printf "      last: %-20s <=\\       \n",          $last;
  122.   printf "       nav: %-20s <=== one of these\n", $nav;
  123.   printf "     price: %-20s <=/        \n",       $price;
  124.   printf "  timezone: %-20s <=== optional\n",       $timezone;
  125.  
  126.   # Report failure
  127.   if ($gccanuse == 0) {
  128.     printf "\n** This stock quote cannot be used by gnucash!!\n\n";
  129.   }
  130.  
  131.   # Dump all fields if requested
  132.   if ($verbose) {
  133.     printf "\nAll fields returned by Finance::Quote for stock $itemname\n\n";
  134.     printf "%-10s %10s  %s\n", "stock", "field", "value";
  135.     printf "%-10s %10s  %s\n", "-----", "-----", "-----";
  136.     foreach $keyname (sort keys %$qh) {
  137.       my ($stock, $key) = split('\034', $keyname);
  138.       printf "%-10s %10s: %s\n", $stock, $key, $$qh{$stock, $key};
  139.     }
  140.     print "\n";
  141.   }
  142. }
  143.  
  144. # Check for and load non-standard modules
  145. check_modules ();
  146.  
  147. my $q = Finance::Quote->new;
  148. $q->timeout(60);
  149.  
  150. if ($#ARGV < 1) {
  151.   my @sources = $q->sources();
  152.   printf "\nUsage: $0 <quote-source> [-v] <stock> [<stock> ...]\n\n";
  153.   printf "Available sources are: \n     %s\n\n", join(' ', @sources);
  154.   exit 0;
  155. }
  156.  
  157. my $verbose = 0;
  158. if (@ARGV[0] eq "-v") {
  159.   $verbose = 1;
  160.   shift;
  161. }
  162.  
  163. my $exchange = shift;
  164. if ($exchange eq "currency") {
  165.   my $from = shift;
  166.   while ($#ARGV >= 0) {
  167.     my $to = shift;
  168.     my $result = $q->currency($from, $to);
  169.     if (defined($result)) {
  170.       printf "1 $from = $result $to\n";
  171.     } else {
  172.       printf "1 $from = <unknown> $to\n";
  173.     }
  174.   }
  175. } else {
  176.   while ($#ARGV >= 0) {
  177.     my $stock = shift;
  178.     my %quotes = $q->fetch($exchange, $stock);
  179.     report($stock, \%quotes, $verbose);
  180.     if ($#ARGV >= 0) {
  181.       printf "=====\n\n";
  182.     }
  183.   }
  184. }
  185.  
  186. =head1 NAME
  187.  
  188. gnc-fq-dump    - Print out data from the F::Q module
  189.  
  190. =head1 SYNOPSIS
  191.  
  192.     gnc-fq-dump yahoo CSCO JNPR
  193.     gnc-fq-dump yahoo BAESY.PK
  194.     gnc-fq-dump europe 48406.PA 13000.PA
  195.     gnc-fq-dump vwd 632034
  196.     gnc-fq-dump ftportfolios FKYGTX
  197.  
  198. =head1 DESCRIPTION
  199.  
  200. This program obtains information from Finance::Quote about any
  201. specified stock, and then dumps it to the screen in annotated form.
  202. This will allow someone to see what is returned, and whether it
  203. provides all the information needed by Gnucash.
  204.  
  205. =cut
  206.